| Conditions | 1 |
| Total Lines | 5 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import {MigrationInterface, QueryRunner} from "typeorm"; |
||
| 11 | |||
| 12 | public async down(queryRunner: QueryRunner): Promise<any> { |
||
| 13 | await queryRunner.query(`ALTER TABLE "customer" DROP CONSTRAINT "FK_7697a356e1f4b79ab3819839e95"`, undefined); |
||
| 14 | await queryRunner.query(`ALTER TABLE "customer" DROP COLUMN "addressId"`, undefined); |
||
| 15 | await queryRunner.query(`DROP TABLE "address"`, undefined); |
||
| 16 | } |
||
| 19 |